Overload | Description |
---|---|
BubbleSort() | Sorts the entire list by using a default comparer and the bubble sort algorithm. |
BubbleSort(IComparer<T>) | Sorts the entire list by using the specified comparer and the bubble sort algorithm. |
BubbleSort(INGreaterThanComparer<T>) | Sorts the entire list by using the specified comparer and the bubble sort algorithm. |
BubbleSort(Int32,Int32,IComparer<T>) | Sorts only a portion of the list using the specified comparer and the bubble sort algorithm. |